home *** CD-ROM | disk | FTP | other *** search
/ Sports Illustrated for Kids - Awesome Athletes! / Sports Illustrated for Kids - Awesome Athletes!.iso / tr.dir / 00013_GameParentObject.ls < prev    next >
Encoding:
Text File  |  1996-04-18  |  812 b   |  54 lines

  1. property mInited, mWhosTurn, mPlayerMode, mCatagories, mPopCount
  2.  
  3. on birth me
  4.   return me
  5. end
  6.  
  7. on mSetInited me, arg
  8.   set the mInited of me to arg
  9. end
  10.  
  11. on mGetInited me
  12.   return the mInited of me
  13. end
  14.  
  15. on mGetWhosTurn me
  16.   return the mWhosTurn of me
  17. end
  18.  
  19. on mSetWhosTurn me, arg
  20.   set the mWhosTurn of me to arg
  21. end
  22.  
  23. on mGetPlayMode me
  24.   return the mPlayerMode of me
  25. end
  26.  
  27. on mSetPlayMode me, arg
  28.   set the mPlayerMode of me to arg
  29. end
  30.  
  31. on mGetCatagories me
  32.   return the mCatagories of me
  33. end
  34.  
  35. on mSetCatagories me, arg
  36.   set the mCatagories of me to arg
  37. end
  38.  
  39. on mResetCatagories me
  40.   set mCatagories to list()
  41. end
  42.  
  43. on mSetPopCount me, arg
  44.   set the mPopCount of me to arg
  45. end
  46.  
  47. on mIncrementPopCount me
  48.   set the mPopCount of me to the mPopCount of me + 1
  49. end
  50.  
  51. on mGetPopCount me
  52.   return the mPopCount of me
  53. end
  54.